-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
use cross storage move when renaming the part file during webdav put #16159
Conversation
Confirmed, fixes the Thanks! 👍 |
Also verified that no other test has been broken: ✅ Testing with encryption enabled still fails (but is unrelated to this change) |
Refer to this link for build results (access rights to CI server needed): |
Tested, verified and works 👍 |
use cross storage move when renaming the part file during webdav put
@@ -162,11 +164,11 @@ public function put($data) { | |||
if ($needsPartFile) { | |||
// rename to correct path | |||
try { | |||
$renameOkay = $storage->rename($internalPartPath, $internalPath); | |||
$renameOkay = $storage->moveFromStorage($partStorage, $internalPartPath, $internalPath); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wow, clever 😄
…miove use cross storage move when renaming the part file during webdav put
Fixes #15786
cc @PVince81 @DeepDiver1975 @nickvergessen